home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 1161 / install.bat < prev    next >
Encoding:
DOS Batch File  |  1997-04-17  |  819 b   |  28 lines

  1. @echo off
  2. cls
  3. if %1x==x goto help
  4. echo This will copy all Envelope Printer files to %1:\ENV
  5. echo Press Ctrl-Break to abort or any other key to continue
  6. pause >nul
  7. echo Installing Envelope Printer files in %1:\ENV
  8. echo off
  9. md %1:\ENV
  10. copy env.* %1:\ENV
  11. copy return.add %1:\ENV
  12. copy readme.wri %1:\ENV
  13. copy asp.txt %1:\ENV
  14. copy file_id.diz %1:\ENV
  15. echo Installation complete!
  16. %1:
  17. cd\ENV
  18. goto END
  19. :help
  20. echo Envelope Printer installation
  21. echo ******************************************************************
  22. echo Usage: Install [destination] (Enter)
  23. echo        where [destination] is drive where you want files installed
  24. echo ******************************************************************
  25. echo Example: Install C (Enter)
  26. echo          will install files on drive C in directory \ENV
  27. :END
  28.